home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / GL / closeup / Makefile < prev   
Makefile  |  1994-08-01  |  310b  |  20 lines

  1. #!smake
  2. #
  3.  
  4. include $(ROOT)/usr/include/make/commondefs
  5.  
  6. TARGETS = closeup
  7.  
  8. # This does not work on mach(GFXBOARD=LIGHT) (Indigos)
  9.  
  10. CFILES    = closeup.c
  11. LCINCS = -I/usr/include/gl
  12. LLDLIBS = -limage -lgl
  13.  
  14. default all: $(TARGETS) 
  15.  
  16. include $(COMMONRULES)
  17.  
  18. ${TARGETS}: ${OBJECTS}
  19.     ${CCF} -o $@ ${OBJECTS} ${LDFLAGS}
  20.